今天主要把資料放到資料庫內,這樣我們就可以接著後面的 SQL 主題啦!
打開剛剛裝好的 pgadmin4 ( 如果還沒安裝,可以回去 day2 看一下安裝參考 )
先連進自己的資料庫裡
- 界面最上面 [Object] > [Register] > [Server]
- 然後tag [General] > [Name] 輸入一下 dvdrental
- 然後點旁邊的tag [Connection] > Host name/address 輸入 localhost
- Maintainance database > 保留 postgres
- Username > 保留 posrgres
- Password > 輸入 postgres
- 然後右下角按 save
直到目前我們開了一個 dverental 的 database 出來了
右鍵點 dvdrental, 往下拉有個 [Restore],點開把 dvdrental.tar 讀進來
// 如果之前沒下載, 這邊有連結 dvdrental dataset,dvdrental.tar 就ok不用解壓縮
參考圖片
SELECT table_schema, table_name
FROM information_schema.tables
WHERE table_schema NOT IN ('information_schema', 'pg_catalog')
AND table_type = 'BASE TABLE'
ORDER BY table_schema, table_name;
--- 把語句框起來 F5 執行
或是用界面去看
select * from film
--- 把語句框起來 F5 執行